home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 416_01 / pcslide / pcslide.doc < prev    next >
Encoding:
Text File  |  1991-11-28  |  3.0 KB  |  97 lines

  1. PCSLIDE
  2. =======
  3.  
  4. PCSLIDE was written to facilitate the production of a simple
  5. slide show. You can create a slide show in a matter of minutes by
  6. creating a text file with each slide separated by a #. The first
  7. line of each slide is treated as a heading. This can be followed
  8. by up to 8 bullet points.
  9.  
  10. The file "demo.sld" illustrates the features of the package. If
  11. you do not have a VGA display change the VV at the top of the
  12. file to VE for EGA or VC for CGA. Unfortunately colour is not
  13. available with CGA because the colour resolution is too low.
  14.  
  15. The maximum length of a line of input should be 40 characters
  16.  
  17. The control commands are
  18. #VV  VGA mode
  19. #VE  EGA mode
  20. #VC  CGA mode
  21. #Gnn set background colour to nn
  22. #Hnn set the heading colour to nn
  23. #Bnn set the bullet points colour to nn
  24.  
  25. Colour numbers are as follows
  26. 0 Black             8  Charcoal Grey
  27. 1 Blue                  9  Bright Blue
  28. 2 Green             10 Bright Green
  29. 3 Cyan                  11 Bright Cyan
  30. 4 Red                   12 Cherry red
  31. 5 Magenta               13 Bright Magenta
  32. 6 Brown             14 Yellow
  33. 7 White             15 Bright white
  34.  
  35. To run a show just type pcslide filename
  36. where filename is the full name of the file conatining your show.
  37.  
  38. Once the show is running the following keys are active 
  39. Esc                stop immediately by pressing 
  40. up or left arrows  go back 1 slide by pressing      
  41. PgUp               go back 5 slides
  42. PgDn               go forward 5 slides
  43. Home               go back to first slide
  44. End                go forward to last slide
  45. Any other key      go to next slide
  46.  
  47.  
  48. Example input file for pcslide
  49. ---------------------------------------
  50.  
  51. # Demonstration of the format of a PCSLIDE Show
  52. # Any line beginning # and followed by a space is a comment
  53. #
  54. #VV  Set VGA mode (VE=EGA VC=CGA)
  55. #H12 Bright red heading
  56. #B10 Bright green body
  57. #G1  Blue background
  58. PCSLIDE by Nigel Salt
  59. »   Simple to use
  60. »   Supports CGA, EGA, and VGA
  61. »   User defined colours        
  62. »   Pure text slide shows
  63. »   Move back to earlier slide
  64. #H13 Bright magenta headings
  65. #B14 Yellow body
  66. A SLIDE
  67. »   Optional heading colour
  68. »   Optional body colour
  69. »   Up to 8 bullet points
  70. #H14 Yellow heading
  71. #B11 Bright Cyan body
  72. CONFIGURATION
  73.     #VV VGA 16 colours 640x480
  74.     #VE EGA 16 colours 640x350
  75.     #VC CGA 2  colours 640x200
  76. #H12 Heading bright red
  77. #B15  Body bright white
  78. KEYBOARD
  79.     Up or left for back 1 slide
  80.     Esc to exit
  81.     Any other key for next slide
  82. #
  83. ---------------------------------------
  84. NOTES
  85. ---------------------------------------
  86. 1. On some SVGA machines which also have an MDA adapter there is
  87. a BIOS bug which fools C into thinking that the primary adapter
  88. is MDA. As a result pcslide says that VGA is not supported. The
  89. program tvgaset.exe fixes the video information table. It is not
  90. a TSR so you will loose no memory when you run it. It may cure
  91. the problem if it affects you.
  92.  
  93. 2. The file "helvb.fon" must be in the same directory as the
  94. executable file.
  95.  
  96. Nigel Salt 29/11/91
  97.